home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 117 / PC Guia 117.iso / swf / prod3.swf / scripts / frame_36 / DoAction_2.as next >
Text File  |  2004-11-15  |  299b  |  15 lines

  1. targetOben = 138;
  2. targetUnten = -85.7;
  3. speed = 4;
  4. menu_mc.onEnterFrame = function()
  5. {
  6.    if(hit_mc.hitTest(_root._xmouse,_root._ymouse,false))
  7.    {
  8.       menu_mc._x += (targetOben - menu_mc._x) / speed;
  9.    }
  10.    else
  11.    {
  12.       menu_mc._x += (targetUnten - menu_mc._x) / speed;
  13.    }
  14. };
  15.